home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / tbl_move_copy.php < prev    next >
PHP Script  |  2005-03-06  |  2KB  |  74 lines

  1. <?php
  2. /* $Id: tbl_move_copy.php,v 2.13 2005/03/06 21:10:53 nijel Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. /**
  6.  * Gets some core libraries
  7.  */
  8. require_once('./libraries/grab_globals.lib.php');
  9. require_once('./libraries/common.lib.php');
  10.  
  11. // Check parameters
  12.  
  13. PMA_checkParameters(array('db', 'table'));
  14.  
  15. require_once('./libraries/tbl_move_copy.php');
  16.  
  17. /**
  18.  * Defines the url to return to in case of error in a sql statement
  19.  */
  20. $err_url = 'tbl_properties.php?' . PMA_generate_common_url($db, $table);
  21.  
  22.  
  23. /**
  24.  * Selects the database to work with
  25.  */
  26. PMA_DBI_select_db($db);
  27.  
  28. /**
  29.  * A target table name has been sent to this script -> do the work
  30.  */
  31. if (isset($new_name) && trim($new_name) != '') {
  32.     if ($db == $target_db && $table == $new_name) {
  33.         $message   = (isset($submit_move) ? $strMoveTableSameNames : $strCopyTableSameNames);
  34.     } else {
  35.         PMA_table_move_copy($db, $table, $target_db, $new_name, $what, isset($submit_move));
  36.         $js_to_run = 'functions.js';
  37.         $message   = (isset($submit_move) ? $strMoveTableOK : $strCopyTableOK);
  38.         $message   = sprintf($message, htmlspecialchars($table), htmlspecialchars($new_name));
  39.         $reload    = 1;
  40.         /* Check: Work on new table or on old table? */
  41.         if (isset($submit_move)) {
  42.             $db        = $target_db;
  43.             $table     = $new_name;
  44.         } else {
  45.             $pma_uri_parts = parse_url($cfg['PmaAbsoluteUri']);
  46.             if (isset($switch_to_new) && $switch_to_new == 'true') {
  47.                 setcookie('pma_switch_to_new', 'true', 0, $GLOBALS['cookie_path'], '' , $GLOBALS['is_https']);
  48.                 $db        = $target_db;
  49.                 $table     = $new_name;
  50.             } else {
  51.                 setcookie('pma_switch_to_new', '', 0, $GLOBALS['cookie_path'], '' , $GLOBALS['is_https']);
  52.             }
  53.         }
  54.     }
  55.     require_once('./header.inc.php');
  56. } // end is target table name
  57.  
  58.  
  59. /**
  60.  * No new name for the table!
  61.  */
  62. else {
  63.     require_once('./header.inc.php');
  64.     PMA_mysqlDie($strTableEmpty, '', '', $err_url);
  65. }
  66.  
  67.  
  68. /**
  69.  * Back to the calling script
  70.  */
  71.  
  72. require('./tbl_properties.php');
  73. ?>
  74.